home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from base.g import *
- from ui_utils import *
- from PyQt4.QtCore import *
- from PyQt4.QtGui import *
- from pluginlicensedialog_base import Ui_Dialog
-
- class PluginLicenseDialog(QDialog, Ui_Dialog):
-
- def __init__(self, parent, license_txt):
- QDialog.__init__(self, parent)
- self.setupUi(self)
- self.license_txt = license_txt
- self.initUi()
-
-
- def initUi(self):
- self.setWindowIcon(QIcon(load_pixmap('hp_logo', '128x128')))
- self.LicenseTextEdit.setText(self.license_txt)
-
-
-